Release 10.1A: OpenEdge Development:
Progress 4GL Reference


GE or >= operator

Returns a TRUE value if the first of two expressions is greater than or equal to the second expression.

Syntax

expression { GE | >= } expression 

expression

A constant, field name, variable name, or any combination of these. The expressions on either side of the GE or >= must be of the same data type, although one might be integer and the other decimal.

Example

This procedure displays item information for those items whose on-hand value is greater than or equal to 120:

r-ge.p
FOR EACH item WHERE on-hand >= 120:
  DISPLAY item.item-num item-name on-hand.
END. 

Notes


Copyright © 2005 Progress Software Corporation
www.progress.com
Voice: (781) 280-4000
Fax: (781) 280-4095